@media (max-width: 991.5px) {
    .closeFilter {
        display: block;
    }

    .filterParent {
        position: fixed;
        z-index: -1;
        top: 1rem;
        right: -50%;
        width: 35%;
        display: block;
        height: 90vh;
        overflow-y: scroll;
        background: var(--second-bg);

        box-shadow: 0 0 10px rgb(0 0 0 / 30%);
        border-radius: 2rem;
        padding-top: 4rem;
        padding-bottom: 2rem;
        opacity: 0;

        transition: 0.3s all ease;
    }

    .filterParent.activeMenu {
        z-index: 9999999;
        right: 2rem;

        opacity: 1;
    }

    .filterParent::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 992px) {
    .filter-control {
        margin-bottom: 10rem;
    }

    .errorImage {
        width: 50%;
    }

    html {
        font-size: 60%;
    }

    /** start nav **/
}

@media (max-width: 767px) {
    .errorImage {
        width: 60%;
    }

    .filterParent {
        width: 50%;
    }

    .levelsBox {
        width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .filterParent {
        width: 60%;
    }

    .levelsBox {
        width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .errorImage {
        width: 80%;
    }

    .filterParent {
        width: 65%;
    }

    html {
        font-size: 58%;
    }

    .levelsBox {
        width: 95%;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .filterParent {
        width: 85%;
    }

    .levelsBox {
        width: 100%;
        margin: 0 auto;
    }

    .levelName {
        font-size: 1.8rem;
    }

    .levelDescription {
        font-size: 1.5rem;
    }
}

@media (max-width: 350px) {
    .levelName {
        font-size: 1.6rem;
    }

    .levelDescription {
        font-size: 1.4rem;
    }
}